home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / SERIUS / SERIUS_F / SERIUS_# / TEXT.H < prev   
Text File  |  1992-01-23  |  545b  |  29 lines

  1. //    Text.h
  2.  
  3. //    This file contains the C language data
  4. //    structures for the 2.2 Text object.
  5. //    ⌐ 1989-92 Serius Corporation
  6.  
  7. #define numTextDatas 2
  8.  
  9. #define changedSignal 0
  10. #define editedSignal 1
  11. #define activateSignal 2
  12. #define deactivateSignal 3
  13. #define lengthErrorSignal 4
  14.  
  15.     typedef struct {
  16.         short        font;
  17.         short        size;
  18.         Style        fontStyle;
  19.         short        just;
  20.         Boolean        editable;
  21.         RGBColor    iColor;
  22.         Boolean        allowReturns;
  23.         Boolean        scrollable;
  24.         Boolean        frame;
  25.         short        limit;
  26.         short        version;
  27.         Boolean        changed;
  28.     } TextRecord, *TextPtr;
  29.